home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / grafik / raytracing / rayshade-4.0.6.3 / libray / libsurf / makefile.amiga < prev    next >
Encoding:
Makefile  |  1994-09-15  |  2.6 KB  |  94 lines

  1. OPTIMIZE = -O3 -fno-defer-pop -fno-builtin
  2. CCFLAGS = -c -m68020 -m68881
  3. RANLIB = ranlib
  4. CC = gcc
  5. MKDEP = //mkdep
  6.  
  7. LIB = ../libray.a
  8. INCLUDE = -nostdinc -I../.. -I.. -IGNU:include -IGNU:os-include -Isc:include
  9. CFLAGS = $(INCLUDE) $(CCFLAGS) $(OPTIMIZE)
  10. SHELL = /bin/sh
  11.  
  12. CFILES = atmosphere.c fog.c fogdeck.c mist.c surface.c surfshade.c
  13. OFILES = atmosphere.o fog.o fogdeck.o mist.o surface.o surfshade.o
  14.  
  15. .c.o:
  16.     $(CC) $(CFLAGS) $<
  17.  
  18. target: $(LIB)
  19.  
  20. $(LIB): $(OFILES)
  21.     ar rv $(LIB) $(OFILES)
  22.     $(RANLIB) $(LIB)
  23.  
  24. clean:
  25.     delete \#?.o quiet
  26.  
  27. # DO NOT DELETE THIS LINE
  28. atmosphere.o: atmosphere.c
  29. atmosphere.o: //config.h
  30. atmosphere.o: //libray/libcommon/color.h
  31. atmosphere.o: //libray/libcommon/common.h
  32. atmosphere.o: //libray/libcommon/error.h
  33. atmosphere.o: //libray/libcommon/expr.h
  34. atmosphere.o: //libray/libcommon/ray.h
  35. atmosphere.o: //libray/libcommon/transform.h
  36. atmosphere.o: //libray/libcommon/vector.h
  37. atmosphere.o: atmosphere.h
  38. fog.o: fog.c
  39. fog.o: //config.h
  40. fog.o: //libray/libcommon/color.h
  41. fog.o: //libray/libcommon/common.h
  42. fog.o: //libray/libcommon/error.h
  43. fog.o: //libray/libcommon/expr.h
  44. fog.o: //libray/libcommon/ray.h
  45. fog.o: //libray/libcommon/transform.h
  46. fog.o: //libray/libcommon/vector.h
  47. fog.o: atmosphere.h
  48. fog.o: fog.h
  49. fogdeck.o: fogdeck.c
  50. fogdeck.o: //config.h
  51. fogdeck.o: //libray/libcommon/color.h
  52. fogdeck.o: //libray/libcommon/common.h
  53. fogdeck.o: //libray/libcommon/error.h
  54. fogdeck.o: //libray/libcommon/expr.h
  55. fogdeck.o: //libray/libcommon/ray.h
  56. fogdeck.o: //libray/libcommon/transform.h
  57. fogdeck.o: //libray/libcommon/vector.h
  58. fogdeck.o: atmosphere.h
  59. fogdeck.o: fogdeck.h
  60. mist.o: mist.c
  61. mist.o: //config.h
  62. mist.o: //libray/libcommon/color.h
  63. mist.o: //libray/libcommon/common.h
  64. mist.o: //libray/libcommon/error.h
  65. mist.o: //libray/libcommon/expr.h
  66. mist.o: //libray/libcommon/ray.h
  67. mist.o: //libray/libcommon/transform.h
  68. mist.o: //libray/libcommon/vector.h
  69. mist.o: atmosphere.h
  70. mist.o: mist.h
  71. surface.o: surface.c
  72. surface.o: //config.h
  73. surface.o: //libray/libcommon/color.h
  74. surface.o: //libray/libcommon/common.h
  75. surface.o: //libray/libcommon/error.h
  76. surface.o: //libray/libcommon/expr.h
  77. surface.o: //libray/libcommon/ray.h
  78. surface.o: //libray/libcommon/transform.h
  79. surface.o: //libray/libcommon/vector.h
  80. surface.o: atmosphere.h
  81. surface.o: surface.h
  82. surfshade.o: surfshade.c
  83. surfshade.o: //config.h
  84. surfshade.o: //libray/libcommon/color.h
  85. surfshade.o: //libray/libcommon/common.h
  86. surfshade.o: //libray/libcommon/error.h
  87. surfshade.o: //libray/libcommon/expr.h
  88. surfshade.o: //libray/libcommon/ray.h
  89. surfshade.o: //libray/libcommon/transform.h
  90. surfshade.o: //libray/libcommon/vector.h
  91. surfshade.o: //libray/libobj/bounds.h
  92. surfshade.o: //libray/libobj/geom.h
  93. surfshade.o: surface.h
  94.